Home
Ray
Articles
This Old House
Family History
Convert Numbers to Strings
the following calculates total to 10.59675.
var price = 9.95;
var taxRate = .065;
var total = proce + (price * taxRate);
The following converts total to 10.60
var prettyTotal = total.toFixed(2);